/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Style */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4; /* Light background for the page */
    color: #333; /* Dark text color for readability */
    line-height: 1.6;
    padding: 0;
}

/* Header Styles */
header {
    background-color: black; /* Purple background for header (Lakers) */
    color:orange; /* White text */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navigation Styles */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    background-color: #333; /* Dark background for navigation */
    margin-top: 20px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #FDB927; /* Gold color for hover effect (Lakers) */
}

/* Main Section */
main {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Home Section */
#home {
    text-align: center;
    margin-bottom: 40px;
}

#home h1 {
    font-size: 36px;
    color: #FDB927; /* Lakers gold */
    margin-bottom: 20px;
}

#home p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Lakers Section */
#lakers {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

#lakers h1 {
    font-size: 36px;
    color: #FDB927; /* Lakers gold */
    margin-bottom: 20px;
}

#lakers h2 {
    font-size: 24px;
    margin-top: 20px;
    color: #552583; /* Lakers purple */
}

#lakers p, #lakers ul {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

#lakers ul {
    list-style-type: disc;
    padding-left: 20px;
}

#lakers li {
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: black; /* Purple footer for Lakers */
    color: orange;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    main {
        padding: 15px;
    }

    #home h1 {
        font-size: 28px;
    }

    #lakers h1 {
        font-size: 30px;
    }

    #lakers h2 {
        font-size: 22px;
    }

    #lakers p, #lakers ul {
        font-size: 16px;
    }
}


.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

